home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / m / maxonc++2.dms / maxonc++2.adf / MCPIncl.lha / utility / date.h next >
C/C++ Source or Header  |  1992-01-26  |  451b  |  31 lines

  1. #ifndef UTILITY_DATE_H
  2. #define UTILITY_DATE_H 1
  3. /*
  4. **    $Filename: utility/date.h $
  5. **    $Release: 2.04 $
  6. **    $Revision: 36.2 $
  7. **    $Date: 91/03/04 $
  8. **
  9. **    Date conversion routines ClockData definition.
  10. **
  11. **    (C) Copyright 1989,1990 Commodore-Amiga Inc.
  12. **        All Rights Reserved
  13. */
  14.  
  15. #ifndef EXEC_TYPES_H
  16. #include "exec/types.h"
  17. #endif
  18.  
  19. struct ClockData
  20.     {
  21.     UWORD sec;
  22.     UWORD min;
  23.     UWORD hour;
  24.     UWORD mday;
  25.     UWORD month;
  26.     UWORD year;
  27.     UWORD wday;
  28.     };
  29.  
  30. #endif
  31.